D:\CMake\bin\cmake.exe -DCMAKE_BUILD_TYPE=Debug -DCMAKE_MAKE_PROGRAM=D:/Jetbrains/CLion/bin/ninja/win/x64/ninja.exe E:/pyscr/pyser/cpp -DCMAKE_TOOLCHAIN_FILE=D:\VisualStudio2026\VC\vcpkg\scripts\buildsystems\vcpkg.cmake -G Ninja -S E:\pyscr\pyser\cpp -B E:\pyscr\pyser\cpp\cmake-build-debug-visual-studio
-- Running vcpkg install
Detecting compiler hash for triplet x64-windows...
-- Automatically setting %HTTP(S)_PROXY% environment variables to "127.0.0.1:7897".
Compiler found: D:/VS2022/BuildTools/VC/Tools/MSVC/14.44.35207/bin/Hostx64/x64/cl.exe
The following packages are already installed:
    cppcodec:x64-windows@0.2#4 -- git+https://github.com/microsoft/vcpkg@c113d2ea70af2571436215a28fb1c880605a1c24
    nlohmann-json:x64-windows@3.12.0 -- git+https://github.com/microsoft/vcpkg@060c829772d52e920fee94cf84755031c61e3b67
    openssl:x64-windows@3.5.1 -- git+https://github.com/microsoft/vcpkg@ce87a54727bd8a845487174b4cc04edd00348cfb
  * vcpkg-cmake:x64-windows@2024-04-23 -- git+https://github.com/microsoft/vcpkg@e74aa1e8f93278a8e71372f1fa08c3df420eb840
  * vcpkg-cmake-config:x64-windows@2024-05-23 -- git+https://github.com/microsoft/vcpkg@97a63e4bc1a17422ffe4eff71da53b4b561a7841
  * vcpkg-cmake-get-vars:x64-windows@2025-05-29 -- git+https://github.com/microsoft/vcpkg@d6510f888dd526c7828f6b973349e7f30be51254
    zstd:x64-windows@1.5.7 -- git+https://github.com/microsoft/vcpkg@31b7320fab13790c6861cb3c2d50dc8f60ca3602
cppcodec is header-only and can be used from CMake via:

  find_path(CPPCODEC_INCLUDE_DIRS "cppcodec/base32_crockford.hpp")
  target_include_directories(main PRIVATE ${CPPCODEC_INCLUDE_DIRS})

The package nlohmann-json provides CMake targets:

    find_package(nlohmann_json CONFIG REQUIRED)
    target_link_libraries(main PRIVATE nlohmann_json::nlohmann_json)

The package nlohmann-json can be configured to not provide implicit conversions via a custom triplet file:

    set(nlohmann-json_IMPLICIT_CONVERSIONS OFF)

For more information, see the docs here:
    
    https://json.nlohmann.me/api/macros/json_use_implicit_conversions/

openssl is compatible with built-in CMake targets:

  find_package(OpenSSL REQUIRED)
  target_link_libraries(main PRIVATE OpenSSL::SSL)
  target_link_libraries(main PRIVATE OpenSSL::Crypto)

zstd provides CMake targets:

  find_package(zstd CONFIG REQUIRED)
  target_link_libraries(main PRIVATE zstd::libzstd)

All requested installations completed successfully in: 824 us
-- Running vcpkg install - done
-- Configuring done (3.3s)
-- Generating done (0.1s)
-- Build files have been written to: E:/pyscr/pyser/cpp/cmake-build-debug-visual-studio
